<style>
.custom-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1e293b;
  padding: 1rem 2rem;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.custom-navbar .logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: #38bdf8;
  text-decoration: none;
}

.custom-navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.custom-navbar .nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.custom-navbar .nav-links li a:hover {
  color: #38bdf8;
}

@media (max-width: 768px) {
  .custom-navbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .custom-navbar .nav-links {
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
  }
}
</style>
